home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
InstallerNG
/
developer
/
gui
/
example
/
igui_NotifyModuleAction.c
< prev
next >
Wrap
C/C++ Source or Header
|
2000-01-01
|
879b
|
50 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
* IN:
* OUT:
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_NotifyModuleAction(register __a0 APTR application, register __a1 char *modulename)
{
char *modname = modulename,
*wintitle = sav_StringF("Performing action on module '%s'", &modname);
if (wintitle)
{
set(((struct Application *) application)->app_MainWindow, MUIA_Window_Title, wintitle);
}
}